home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-09-08 | 599 b | 25 lines | [TEXT/CWIE] |
- //////////////////////////////////////////////
- // //
- // Main.h //
- // //
- // Copyright 1996 1 A.M. Productions //
- // Aug 8,1996 //
- // //
- //////////////////////////////////////////////
-
- #ifndef __MAIN__
- #define __MAIN__
-
- #define kCancelButton 2
- #define kOKButton 1
- #define kESC 0x35
-
- #define KeyMapLoMem ((unsigned char *)0x174)
- #define ThisKey(key) ((KeyMapLoMem[key >> 3] >> (key & 7)) & 1)
-
- void main();
- void GetNumber();
- pascal Boolean StdFilter(DialogPtr theDialog, EventRecord *theEvent, short *itemHit);
- Boolean CheckValue(Str255 valStr);
-
- #endif